RemovePushChannelsResult.fromJson constructor

RemovePushChannelsResult.fromJson(
  1. dynamic object
)

Implementation

factory RemovePushChannelsResult.fromJson(dynamic object) {
  if (object is List) {
    return RemovePushChannelsResult._(object[0], object[1]);
  }

  throw getExceptionFromDefaultResult(DefaultResult.fromJson(object));
}