SuccessDetail.fromJson constructor

SuccessDetail.fromJson(
  1. Map _json
)

Implementation

SuccessDetail.fromJson(core.Map _json)
    : this(
        otherNativeCrash: _json.containsKey('otherNativeCrash')
            ? _json['otherNativeCrash'] as core.bool
            : null,
      );