menu
codable_dart package
documentation
json.dart
JsonDecodable<T>
fromJsonBytes method
fromJsonBytes method
dark_mode
light_mode
fromJsonBytes
method
T
fromJsonBytes
(
List
<
int
>
bytes
)
Implementation
T fromJsonBytes(List<int> bytes) { return JsonDecoder.decode<T>(bytes, this); }
codable_dart package
documentation
json
JsonDecodable<T>
fromJsonBytes method
JsonDecodable extension on
Decodable
<
T
>