RequestMirrorPolicy.fromJson constructor

RequestMirrorPolicy.fromJson(
  1. Map json_
)

Implementation

RequestMirrorPolicy.fromJson(core.Map json_)
  : this(
      backendService: json_['backendService'] as core.String?,
      mirrorPercent: (json_['mirrorPercent'] as core.num?)?.toDouble(),
    );