isAccountTypeOf method

bool isAccountTypeOf(
  1. String accountType
)

Implementation

bool isAccountTypeOf(String accountType) {
  return _accountType != null &&
      _accountType!.toLowerCase() == accountType.toLowerCase();
}