fromJson<B extends Object> static method

B fromJson<B extends Object>(
  1. String source, {
  2. List<String> excludes = const [],
})

Implementation

static B fromJson<B extends Object>(String source,
        {List<String> excludes = const []}) =>
    fromMap<B>(jsonDecode(source), excludes: excludes);