ReopenMatterResponse.fromJson constructor

ReopenMatterResponse.fromJson(
  1. Map json_
)

Implementation

ReopenMatterResponse.fromJson(core.Map json_)
  : this(
      matter: json_.containsKey('matter')
          ? Matter.fromJson(
              json_['matter'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );