itemDecoder method

  1. @override
AccountInfo? itemDecoder(
  1. Map<String, dynamic>? item
)

Decodes an item in the JSON RPC List response.

Implementation

@override
AccountInfo? itemDecoder(
  final Map<String, dynamic>? item,
) => item != null ? AccountInfo.fromJson(item) : null;