ChangeFilterOwner.fromJson constructor

ChangeFilterOwner.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ChangeFilterOwner.fromJson(Map<String, Object?> json) {
  return ChangeFilterOwner(
    accountId: json[r'accountId'] as String? ?? '',
  );
}