RefreshDataSourceResponse.fromJson constructor

RefreshDataSourceResponse.fromJson(
  1. Map json_
)

Implementation

RefreshDataSourceResponse.fromJson(core.Map json_)
  : this(
      statuses: (json_['statuses'] as core.List?)
          ?.map(
            (value) => RefreshDataSourceObjectExecutionStatus.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );