RemovePushChannelsResult.fromJson constructor
- dynamic object
Implementation
factory RemovePushChannelsResult.fromJson(dynamic object) {
if (object is List) {
return RemovePushChannelsResult._(object[0], object[1]);
}
throw getExceptionFromDefaultResult(DefaultResult.fromJson(object));
}