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,
      );