BugsnagLastRunInfo.fromJson constructor

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

Implementation

BugsnagLastRunInfo.fromJson(Map<String, dynamic> json)
    : consecutiveLaunchCrashes = json['consecutiveLaunchCrashes'] as int,
      crashed = json['crashed'] as bool,
      crashedDuringLaunch = json['crashedDuringLaunch'] as bool;