fromJson static method

PassportElementTypeIdentityCard? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static PassportElementTypeIdentityCard? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return const PassportElementTypeIdentityCard();
}