getCustomerAttribute static method

Future<String?> getCustomerAttribute(
  1. String attributeName
)

Implementation

static Future<String?> getCustomerAttribute(String attributeName) async {
  final String? data =
      await channel.invokeMethod("getCustomerAttribute", attributeName);
  return data;
}