DevMessageV2.fromJsonString constructor
DevMessageV2.fromJsonString(
- String jsonString
Creates from JSON string.
Implementation
factory DevMessageV2.fromJsonString(String jsonString) {
return DevMessageV2.fromJson(jsonDecode(jsonString) as Map<String, dynamic>);
}