AppInstall.fromJson constructor

AppInstall.fromJson(
  1. Map<String, dynamic> jsonBody
)

Implementation

factory AppInstall.fromJson(Map<String, dynamic> jsonBody) {
  Map<String, dynamic> json = jsonBody['app_install'];
  return AppInstall(
    id: json['id'],
  );
}