RuntimeError.fromJson constructor

RuntimeError.fromJson(
  1. Map json_
)

Implementation

RuntimeError.fromJson(core.Map json_)
    : this(
        code: json_['code'] as core.String?,
        message: json_['message'] as core.String?,
      );