copyWith method

Like copyWith({
  1. String? accountId,
})

Implementation

Like copyWith({String? accountId}) {
  return Like(
    accountId: accountId ?? this.accountId,
  );
}