BackendServiceOrchestrationInfo.fromJson constructor

BackendServiceOrchestrationInfo.fromJson(
  1. Object? j
)

Implementation

factory BackendServiceOrchestrationInfo.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return BackendServiceOrchestrationInfo(
    resourceUri: switch (json['resourceUri']) {
      null => null,
      Object $1 => decodeString($1),
    },
  );
}