header method Null safety

NCMBScript header(
  1. String name,
  2. String value
)

ヘッダーを追加する name ヘッダー名 value ヘッダーの値

Implementation

NCMBScript header(String name, String value) {
  _headers[name] = value;
  return this;
}