BackendServiceReference.fromJson constructor

BackendServiceReference.fromJson(
  1. Map json_
)

Implementation

BackendServiceReference.fromJson(core.Map json_)
    : this(
        backendService: json_.containsKey('backendService')
            ? json_['backendService'] as core.String
            : null,
      );