checkFieldExists method

Future<bool> checkFieldExists(
  1. String field
)

Implementation

Future<bool> checkFieldExists(String field) async =>
    (await _getSnapshot()).data()?.containsKey(field) ?? false;