getStringOrNull method

String? getStringOrNull(
  1. int idx
)

Gets a nullable String.

Implementation

String? getStringOrNull(int idx) {
  return _get<String>(idx);
}