Account constructor

Account(
  1. String rawId,
  2. String type,
  3. String name,
  4. [List<String> mimetypes]
)

Implementation

Account(this.rawId, this.type, this.name, [List<String> mimetypes])
    : mimetypes = mimetypes ?? <String>[];