AppInfo constructor

const AppInfo({
  1. @JsonKey(name: 'appId') String? appIdAndroid,
  2. @JsonKey(includeToJson: false) String? appIdIos,
  3. @JsonKey(name: 'appKey') String? appKeyAndroid,
  4. @JsonKey(includeToJson: false) String? appKeyIos,
  5. required String developerId,
})

Implementation

const factory AppInfo({
  @JsonKey(name: 'appId') String? appIdAndroid, // ignore: invalid_annotation_target
  @JsonKey(includeToJson: false) String? appIdIos, // ignore: invalid_annotation_target
  @JsonKey(name: 'appKey') String? appKeyAndroid, // ignore: invalid_annotation_target
  @JsonKey(includeToJson: false) String? appKeyIos, // ignore: invalid_annotation_target
  required String developerId,
}) = _AppInfo;