SendContactMethodVerificationResult.fromJson constructor
Implementation
factory SendContactMethodVerificationResult.fromJson(
Map<String, dynamic> json) {
return SendContactMethodVerificationResult(
operations: (json['operations'] as List?)
?.whereNotNull()
.map((e) => Operation.fromJson(e as Map<String, dynamic>))
.toList(),
);
}