getEntityMetadata method

Future getEntityMetadata(
  1. String communityAddress,
  2. String account, {
  3. bool isRopsten = false,
})

Implementation

Future<dynamic> getEntityMetadata(
  String communityAddress,
  String account, {
  bool isRopsten = false,
}) async {
  Response response = await _dio.get(
    '/v1/entities/metadata/$communityAddress/$account',
  );

  return response.data['data'];
}