ObbyEventCapabilitiesAcknowledged.fromJson constructor

ObbyEventCapabilitiesAcknowledged.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ObbyEventCapabilitiesAcknowledged.fromJson(Map<String, dynamic> json) => ObbyEventCapabilitiesAcknowledged(
  names: (json['names'] as List).map((e) => e as String).toList(),
);