Groups.fromJson constructor

Groups.fromJson(
  1. Map json_
)

Implementation

Groups.fromJson(core.Map json_)
    : this(
        kind: json_['kind'] as core.String?,
        responseCode: json_['responseCode'] as core.String?,
      );