LicenseInfo.fromJson constructor

LicenseInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory LicenseInfo.fromJson(Map<String, dynamic> json) {
  return LicenseInfo(
      parseMode(json['mode']),
      json.containsKey(('expiration'))
          ? DateTime.parse(json['expiration'])
          : null,
      json['companyName']);
}