properties method

Future<Map<String, dynamic>> properties()

Get a custom set of properties as a JSON object, defined in the chain spec.

Implementation

Future<Map<String, dynamic>> properties() async {
  final response = await _provider.send('system_properties', []);
  return response.result as Map<String, dynamic>;
}