MultiOutputInfo.fromJson constructor

MultiOutputInfo.fromJson(
  1. Map _json
)

Implementation

MultiOutputInfo.fromJson(core.Map _json)
    : this(
        tag: _json.containsKey('tag') ? _json['tag'] as core.String : null,
      );