StartBackfillJobResponse.fromJson constructor

StartBackfillJobResponse.fromJson(
  1. Map json_
)

Implementation

StartBackfillJobResponse.fromJson(core.Map json_)
  : this(
      object: json_.containsKey('object')
          ? StreamObject.fromJson(
              json_['object'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );