Screenshot.fromJson constructor

Screenshot.fromJson(
  1. Map json_
)

Implementation

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