fromJson_version static method

int? fromJson_version(
  1. Map<String, dynamic> json
)

Implementation

static int? fromJson_version(Map<String, dynamic> json) {
  return (json[r'version'] == null) ? null : json[r'version'].toInt();
}